home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.2 KB | 50 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _DISPMOD_
- #define _DISPMOD_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl" // base class
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODDispatchModule;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODSession;
-
- //=====================================================================================
- // ODDispatchModule
- //=====================================================================================
-
- interface ODDispatchModule : ODObject
- {
- void InitDispatchModule(in ODSession session);
-
- ODBoolean Dispatch(in ODEventData event);
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit,
- Purge;
-
- releaseorder:
- InitDispatchModule,
- Dispatch;
-
-
- };
- #endif
- };
-
- #endif //# _DISPMOD_
-
-